home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / debugger / amiga / powervsr.lzh / PVDevelop / PVDevelop.lzh / include / PV / PVMemory.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-14  |  550 b   |  37 lines

  1. #ifndef PV_PVMEMORY_H
  2. #define PV_PVMEMORY_H TRUE
  3. /*
  4. **  $Filename: PVMemory.h $
  5. **  $Release: 1.02 $
  6. **  $Revision: 37.346 $
  7. **  $Date: 15 Sep 91 $
  8. **
  9. **  Memory structures used by PowerVisor (see 'TheWizardCorner')
  10. **
  11. **  ⌐ 1991 Jorrit Tyberghein, included with PowerVisor
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. #define PVBLOCK APTR
  20. #define PVHANDLE APTR
  21.  
  22. struct PVMemoryBlock
  23.     {
  24.         ULONG Size;
  25.         APTR Memory;
  26.     };
  27.  
  28. struct PVQuickBlock
  29.     {
  30.         ULONG LogicalSize;
  31.         APTR Memory;
  32.         ULONG RealSize;
  33.     };
  34.  
  35.  
  36. #endif
  37.